home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C & C++ Multimedia Cyber Classroom
/
C and C++ Multimedia Cyber Classroom (Prentice Hall) (1998).iso
/
src
/
fig22_12.jar
/
Ch22
/
Fig22_12
/
Fig22_12.c
Wrap
C/C++ Source or Header
|
1993-11-09
|
176b
|
11 lines
/* Printing numbers with and without the + flag */
#include <stdio.h>
main()
{
printf("%d\n%d\n", 786, -786);
printf("%+d\n%+d\n", 786, -786);
return 0;
}